home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / archive / userbox / publicdomain / engclock_v7.0.lha / EngClock_v7.0 / testall.rexx < prev   
OS/2 REXX Batch file  |  1996-01-26  |  1KB  |  61 lines

  1. /* Quick rexx script to test out all EngClock commands */
  2.  
  3. address 'ENG_REXX'
  4.  
  5. say "Changing justifcation..."
  6. address command "wait 2"
  7. say "...left"
  8. left
  9. address command "wait 2"
  10. say "...right"
  11. right
  12. address command "wait 2"
  13. say "...centred"
  14. centre
  15. address command "wait 2"
  16. say ""
  17. say "Making window auto adjust..."
  18. auto on
  19. address command "wait 2"
  20. say "Making window normal adjust..."
  21. auto off
  22. address command "wait 2"
  23. say ""
  24. say "Changing language..."
  25. say "...to french"
  26. french
  27. address command "wait 2"
  28. say "...to english"
  29. english
  30. address command "wait 2"
  31. say "...to spanish"
  32. spanish
  33. address command "wait 2"
  34. say ""
  35. say "Making it speak..."
  36. english
  37. speak
  38. address command "wait 5"
  39. say "Making is write the time to ram:file"
  40. sendfile "ram:file"
  41. say "Activating the window..."
  42. activate
  43. address command "wait 2"
  44. say "Calling up prefs..."
  45. prefs
  46. address command "wait 2"
  47. say "Changing window..."
  48. newwin "0,0,640,150"
  49. address command "wait 2"
  50. say "Turning date on..."
  51. date on
  52. address command "wait 2"
  53. say "Turning date off..."
  54. date off
  55. address command "wait 2"
  56. say "Killing engclock..."
  57. quit
  58.  
  59.  
  60.  
  61.